:root {
      --neon-lime: #32ff32;
      --hot-pink: #ff1493;
      --electric-blue: #00bfff;
      --bright-purple: #8a2be2;
      --dark-bg: #0a0a0a;
    }

    .gradient-bg {
      background: linear-gradient(135deg, #1a73e8 0%, #4285f4 25%, #667eea 50%, #764ba2 75%, #f093fb 100%);
    }

    .btn-primary {
      background: linear-gradient(to right, var(--hot-pink), var(--bright-purple));
      border: none;
      border-radius: 1rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      border: none;
      border-radius: 1rem;
      color: #fff;
      font-weight: 600;
    }
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .neumorphic {
      background: #fff;
      box-shadow: 10px 10px 20px rgba(0,0,0,0.1),
                  -10px -10px 20px rgba(255,255,255,0.7);
    }
    .ad-banner {
        background: linear-gradient(45deg, #1a73e8, #4285f4);
        animation: shimmer 2s infinite;
    }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .input-glass {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 1rem;
      padding: 1rem;
      color: #222;
      width: 100%;
      transition: all 0.3s;
    }
    .input-glass:focus {
      outline: none;
      box-shadow: 0 0 10px var(--electric-blue);
      background: #fff;
    }

    .hover-lift:hover {
      transform: translateY(-8px);
      transition: 0.3s ease;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .submit-gradient {
      background: linear-gradient(to right, var(--neon-lime), var(--electric-blue));
      border: none;
    }

    ol, ul {
      padding-left: 0rem;
    }

    /* Responsive typography */
    @media (max-width: 767px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      .hero-text p {
        font-size: 1rem;
      }
    }
    .influencer-signup-main-section {
      .container-fluid {
          position: relative;
          z-index: 2;
      }

      .signup-card {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px) saturate(180%);
          border: 1px solid rgba(255, 255, 255, 0.3);
          box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1),
                      0 16px 32px rgba(0, 0, 0, 0.05),
                      inset 0 1px 0 rgba(255, 255, 255, 0.6);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
      }

      .signup-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
          transition: left 0.5s;
      }

      .signup-card:hover::before {
          left: 100%;
      }

      .signup-card:hover {

          box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15),
                      0 20px 40px rgba(0, 0, 0, 0.1),
                      inset 0 1px 0 rgba(255, 255, 255, 0.8);
      }

      .section-header {
          color: #2d3748;
          font-weight: 700;
          font-size: 1.1rem;
          position: relative;
          padding-bottom: 12px;
          margin-bottom: 24px;
          animation: slideInUp 0.6s ease-out;
      }

      .section-header::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 60px;
          height: 3px;
          background: linear-gradient(135deg, #667eea, #764ba2);
          border-radius: 2px;
          transition: width 0.3s ease;
      }

      .section-header:hover::after { width: 100px; }

      .section-header i {
          background: linear-gradient(135deg, #667eea, #764ba2);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-right: 10px;
          font-size: 1.2rem;
      }

      .form-floating { position: relative; margin-bottom: 1.5rem; }

      .form-control, .form-select {
          border: 2px solid #e2e8f0;
          border-radius: 16px;
          padding: 16px 20px;
          font-size: 0.95rem;
          font-weight: 500;
          background: rgba(255, 255, 255, 0.8);
          backdrop-filter: blur(10px);
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }

      .form-control:focus, .form-select:focus {
          border-color: #667eea;
          box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1),
                      0 8px 16px rgba(102, 126, 234, 0.15);
          transform: translateY(-2px);
          background: rgba(255, 255, 255, 0.95);
      }

      .form-control:hover:not(:focus), .form-select:hover:not(:focus) {
          border-color: #cbd5e0;
          transform: translateY(-1px);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      }

      .form-label { font-weight: 600; color: #4a5568; margin-bottom: 8px; font-size: 0.9rem; letter-spacing: 0.025em; }

      .input-group { box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }

      .input-group:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.1); transform: translateY(-1px); }

      .input-group-text {
          background: linear-gradient(135deg, #667eea, #764ba2);
          color: white;
          border: none;
          padding: 16px 18px;
          font-size: 1.1rem;
          transition: all 0.3s ease;
      }

      .input-group .form-control { border-left: none; border-radius: 0 16px 16px 0; box-shadow: none; }

      .input-group:focus-within .input-group-text { background: linear-gradient(135deg, #5a67d8, #6b46c1); transform: scale(1.05); }

      .btn-gradient {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
          border: none;
          border-radius: 16px;
          padding: 18px 36px;
          font-weight: 700;
          font-size: 1.1rem;
          letter-spacing: 0.025em;
          transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
          position: relative;
          overflow: hidden;
          box-shadow: 0 8px 16px rgba(102,126,234,0.3), 0 4px 8px rgba(0,0,0,0.1);
      }
      .suggestions-container {
          display: flex;
          flex-wrap: wrap;
          gap: 0.5rem 0.5rem;
      }
      .suggestion-pill {
          display: inline-flex;
          align-items: center;
          padding: 0.5rem 1rem;
          background-color: #fff;
          border: 1px solid rgba(49,49,49,0.15);
          border-radius: 9999px;
          font-size: 0.875rem;
          font-weight: 500;
          color: #4b5563;
          cursor: pointer;
          white-space: nowrap;
          box-shadow: 0 1px 2px rgba(0,0,0,0.05);
          transition: box-shadow 0.2s ease;
      }
      .suggestion-pill:hover {
      transform: scale(1.05);
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
          box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
      }

    }

    .feature-card {
  border: 2px solid rgba(0,0,0,0.05);
  border-radius: 1.5rem;
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.review-card {
  border: 2px solid rgba(0,0,0,0.05);
  border-radius: 1.5rem;
  background: #fff;
  transition: transform .3s;
}
.review-card:hover {
  transform: translateY(-4px);
}
.avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.bg-gradient-pink-purple { background: linear-gradient(45deg, #ff1493, #8a2be2); }
.bg-gradient-lime-blue { background: linear-gradient(45deg, #32ff32, #00bfff); }
.bg-gradient-blue-purple { background: linear-gradient(45deg, #00bfff, #8a2be2); }
.bg-gradient-purple-pink { background: linear-gradient(45deg, #8a2be2, #ff1493); }
.bg-gradient-lime-pink { background: linear-gradient(45deg, #32ff32, #ff1493); }

/* Button style */
/* Gradient background for .grow-your-influence-btn */
.grow-your-influence-btn {
  background: linear-gradient(to right, #39FF14, #00BFFF); /* Neon lime to electric blue */
  padding: 12px 24px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease-in-out; /* Smooth transition for transform */
}

/* Hover scale effect for .grow-your-influence-btn */
.grow-your-influence-btn:hover {
  transform: scale(1.1); /* Hover scale effect */
}

/* Pulse effect without shadow for .grow-your-influence-btn */
.grow-your-influence-btn {
  animation: pulse-glow 1.5s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    background-color: #39FF14; /* Neon lime */
  }
  100% {
    background-color: #00BFFF; /* Electric blue */
  }
}
